var runtime.stackLarge
17 uses
runtime (current package)
stack.go#L162: var stackLarge struct {
stack.go#L175: for i := range stackLarge.free {
stack.go#L176: stackLarge.free[i].init()
stack.go#L177: lockInit(&stackLarge.lock, lockRankStackLarge)
stack.go#L397: lock(&stackLarge.lock)
stack.go#L398: if !stackLarge.free[log2npage].isEmpty() {
stack.go#L399: s = stackLarge.free[log2npage].first
stack.go#L400: stackLarge.free[log2npage].remove(s)
stack.go#L402: unlock(&stackLarge.lock)
stack.go#L506: lock(&stackLarge.lock)
stack.go#L507: stackLarge.free[log2npage].insert(s)
stack.go#L508: unlock(&stackLarge.lock)
stack.go#L1241: lock(&stackLarge.lock)
stack.go#L1242: for i := range stackLarge.free {
stack.go#L1243: for s := stackLarge.free[i].first; s != nil; {
stack.go#L1245: stackLarge.free[i].remove(s)
stack.go#L1251: unlock(&stackLarge.lock)
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |